#!/bin/sh
which uci > /dev/null || exit 0
uci -q get ucitrack.@rtty[0] > /dev/null || {
  uci add ucitrack rtty > /dev/null
  uci set ucitrack.@rtty[0].init=rtty
  uci commit
}
